Insert Method (ListBase<T>)
Inserts an item to the
ListBase<T> at the specified index.
public void Insert(
int ,
)
'Declaration
Public Sub Insert( _
ByVal As Integer, _
ByVal As _
)
'Usage
Dim instance As ListBase(Of T)
Dim index As Integer
Dim item As
instance.Insert(index, item)
Parameters
- index
- The zero-based index at which should be inserted.
- item
- The object to insert into the ListBase<T>.